-
Notifications
You must be signed in to change notification settings - Fork 113
added WorkflowServiceGrpc and IWorkflowServiceV4 #999
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: v4.x.x
Are you sure you want to change the base?
Conversation
Is this a complete switch to GRPC, so we're throwing away thrift? |
I finally get the chance to add the unit test for mappers. To answer your question, I mainly need reviews on 1:1 comparison of thrift vs newly added entities. Others are captured by mappers tests. |
build.gradle
Outdated
@@ -89,6 +89,11 @@ dependencies { | |||
compile group: 'com.google.api.grpc', name: 'proto-google-common-protos', version: '2.10.0' | |||
compile group: 'com.google.protobuf', name: 'protobuf-java-util', version: '3.21.9' | |||
compile group: 'com.google.oauth-client', name: 'google-oauth-client', version: '1.35.0' | |||
compile group: 'org.projectlombok', name: 'lombok', version: '1.18.30' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should only need the compileOnly dependency. We don't want to include this at runtime.
What changed?
BaseError
, which is a catchall similar toTException
.Plan
Why?
Thrift deprecation work
How did you test it?
Unit Test on mappers from ClientObjects to ProtoObjects
Potential risks
Release notes
Documentation Changes